From: Glenn Morris Date: Mon, 1 Nov 2010 02:55:12 +0000 (-0700) Subject: * lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~5852 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=783dbde35392cbb4100d15cc0b54078d83c5c189;p=emacs.git * lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 38c3cb15c49..4d4707e9c80 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2010-11-01 Glenn Morris + * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change. + * startup.el (package-enable-at-startup, package-initialize): Silence compiler. diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 5afe49346b5..952b69f7ce3 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1631,7 +1631,7 @@ or 'no-byte-compile if the file did not need recompilation." bytecomp-filename "? ")))) (progn (if (and noninteractive (not byte-compile-verbose)) - (message "Compiling %s..." bytecomp-source)) + (message "Compiling %s..." bytecomp-filename)) (byte-compile-file bytecomp-filename load)) (when load (load bytecomp-filename)) 'no-byte-compile))) @@ -4349,5 +4349,4 @@ and corresponding effects." (run-hooks 'bytecomp-load-hook) -;; arch-tag: 9c97b0f0-8745-4571-bfc3-8dceb677292a ;;; bytecomp.el ends here